home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / bbs / check20.zip / RESET.BAT < prev    next >
DOS Batch File  |  1996-11-15  |  639b  |  35 lines

  1. @echo off
  2. cls
  3. echo                   BBS CHECKERS RESET BATCH FILE     
  4. echo.
  5. echo This program will reset the BBS Checkers Door Game, deleting all
  6. echo game files, message files, and news file.  Some files may not exist,
  7. echo but this is normal.
  8. echo.
  9. echo Sure you want to do this?
  10. echo.
  11. echo Press enter twice to proceed or CTRL-C to quit
  12. pause
  13. pause
  14.  
  15. cls
  16. @echo off
  17. del *.msg
  18. echo * Message files deleted.
  19.  
  20. @echo off
  21. del game.dat
  22. del temp.dat
  23. del winners.dat
  24. del inuse.dat
  25. del news.txt
  26. echo * Game files deleted.
  27.  
  28. @echo off
  29. del checkers.log
  30. echo * Log file deleted.
  31.  
  32. echo.
  33. echo * Game has been reset.
  34.  
  35.